Jump to content

[SOLVED] AJAX populating form fields from Select Drop Down


ncosgrove

Recommended Posts

Hi Folks,

 

I'm having some problems with PHP/AJAX/MYSQL. I've got as far as creating a select drop down with the product table, now what I wish to do is populate the remaining fields such as code/description/price. I have managed to get it so when a product is selected the product description appears in the description box. Please see the example at:

 

http://ncosgrove.com/order/order_new.php

 

What I need know is how to populate the other fields such as id and price at the same time. In its current format I only seem to be able to update one field. See below for the js and php code:

 

selectuser.js

var xmlhttp;

function showUser(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Browser does not support HTTP Request");
  return;
  }
var url="getuser.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);

}

function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("product_description2").value=xmlhttp.responseText;
}
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}

 

getuser.php

<?php
header('Content-type: text/xml'); 
$q=$_GET["q"];

$con = mysql_connect('localhost', '<username>', '<password>');
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("<db_name>", $con);

$sql="SELECT * FROM liv_product WHERE id = '".$q."'";

$result = mysql_query($sql);


while($row = mysql_fetch_array($result))
  {
  echo $row['description'];
  }

?> 

 

Any help would be greatly appreciated!

 

Many Thanks in advance. :)

 

Link to comment
Share on other sites

this is down to the function stateChanged

 

i pulled this from your example site

 

function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("product_description2").value=xmlhttp.responseText;
}
}

 

What you "could do" is the following

 

function stateChanged()
{
if (xmlhttp.readyState==4)
{
var mySplitResult = responseText.split("|");
document.getElementById("product_description2").value=mySplitResult[0];
document.getElementById("id_product2").value=mySplitResult[1];
}
}

 

 

and in the PHP update

while($row = mysql_fetch_array($result))
  {
  echo $row['description'];
  }

to

while($row = mysql_fetch_array($result))
  {
  echo $row['description'];
  echo "|";
  echo $row['id'];
  }

Link to comment
Share on other sites

I just ran a test, it seams you reverted back already,

so i can't say for sure why it failed,

 

but i did messup a line (see update)

function stateChanged()
{
if (xmlhttp.readyState==4)
{
var mySplitResult = xmlhttp.responseText.split("|"); //updated
document.getElementById("product_description2").value=mySplitResult[0];
document.getElementById("id_product2").value=mySplitResult[1];
}
}

Link to comment
Share on other sites

  • 3 months later...

I am able to retrieve all the values, however I am stuck with drop down box.

 

below is the code that I have to assign the database value as the selected value in the dropdown box :

 

var mySplitResult = req.responseText.split("|"); //updated

 

if(mySplitResult[6] == undefined){

document.inventoryForm.schDeptCode.options[document.inventoryForm.schDeptCode.selectedIndex].value='';

}

else

{

document.inventoryForm.schDeptCode.options[document.inventoryForm.schDeptCode.selectedIndex].value=mySplitResult[6];

}

 

But for some reason it is now able to assign the value from the database as the selected value for the drop down. I put:

alert(document.inventoryForm.schDeptCode.options[document.inventoryForm.schDeptCode.selectedIndex].value);

and it does show the retrieved value correctly but just cant seem to assign it to the dropdown box as the selected value.

 

However, the same code below works fine when it is a text box.

Once I enter the fund code, it hits the database and retrieves the title  and populates the text box with the fund title

 

if(mySplitResult[0] == undefined){

document.getElementById('schTitle2').value=''; } else {

document.getElementById('schTitle2').value=mySplitResult[0]; }

 

 

Any help on the dropdown box?

 

thanks,

Link to comment
Share on other sites

 

I got it to work,

just a small change did it

  from

  document.inventoryForm.schDeptCode.options[document.inventoryForm.schDeptCode.selectedIndex].value=mySplitResult[6];

  to

 

  document.inventoryForm.schDeptCode.options[document.inventoryForm.schDeptCode.selectedIndex].text=mySplitResult[6];

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.